home *** CD-ROM | disk | FTP | other *** search
/ The PC-SIG Library 10 / The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso / PC_SIGCD / 25 / 9 / DISK2597.ZIP / HSRES110.LZH / EXAMPLE.BAT next >
DOS Batch File  |  1991-04-12  |  382b  |  32 lines

  1. @echo off
  2. cls
  3. echo Example of use of HSR and HSRES
  4. echo  
  5.  
  6. hsr ?
  7. if errorlevel 1 goto :appl
  8.  
  9. echo  
  10. hsres
  11.  
  12. hsr ?
  13. if errorlevel 1 goto :appl
  14.  
  15. echo HSRES could not be installed
  16. goto :end
  17.  
  18. :appl
  19. echo  
  20. echo Here I could have called an application.
  21. echo As an example, I use HSR:
  22. echo  
  23.  
  24. hsr
  25.  
  26. echo  
  27. echo And now to unloading HSRES:
  28. echo  
  29. hsres -u
  30.  
  31. :end
  32.